home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 151-175 / disk_174 / iff2sun / readme < prev    next >
Text File  |  1992-05-06  |  2KB  |  50 lines

  1. [Ed. Note:  The following was excerpted from the iff2sun.c source file. 
  2.  -Fred ><> ]
  3.  
  4. /*
  5. **      This Program created (under tremendous pressure) by Steve Berry.
  6. **
  7. **      I hope you guys keep it clean. (If you don't, let me know :-)
  8. **
  9. **      Status: PD all the way.
  10. **
  11. **      What's it do? This little guy reads an Amiga IFF ILBM file and 
  12. **      outputs sun rasterfile format. GIGO (Georgous In Garbage Out).
  13. **
  14. **    USEAGE: iff2sun infile outfile
  15. **        if infile is not specified stdin is used.
  16. **        if outfile is not specified then stdout is used.
  17. **
  18. **    Note: this program outputs a COLOR sun file with no color table,
  19. **    which defaults to shades of gray. If you want to display this on
  20. **    a monochrome tube (which is what I have) you should go through the
  21. **    folowing steps:
  22. **        1) iff2sun inputfile outputfile
  23. **        2) rastrepl outputfile output.bigger
  24. **        3) rasfilter8to1 -d output.bigger output.mono
  25. **    The rastrepl just pixel replicates the image so that it large
  26. **    enough to see the detail. you can run this as many times as you
  27. **    like, but remember the image quadruples each time you use it.
  28. **        The rasfilter8to1 program converts the color file (8 bit
  29. **    planes) to mono (1 plane) and does some fancy dithering (-d).
  30. **
  31. **    Limitations:
  32. **        Don't do HAM or ExtraHalfBright. I am planning on adding
  33. **        EHB because it would be relitively simple to do, and 64
  34. **        colors would improve the image quality for the dithering
  35. **        routines.
  36. **        Also, I have only tested this on DPaintII images, it is
  37. **        very possible that it might break with other formats.
  38. **        Unlikely, but possible :*)
  39. **
  40. **    CREDITS:
  41. **            Mark Thompson
  42. **            Steve (Raz) Berry
  43. **
  44. **    Contacts:
  45. **            USENET    ...alliant!sberry
  46. **            BIX:    razberry
  47. **
  48. **      10/31/88
  49. */
  50.